home *** CD-ROM | disk | FTP | other *** search
- unit uPostNote;
-
- {
- *******************************************************************************
- * Descriptions: Post-a-note implementation
- * $Source: /cvsroot/fma/fma/uPostNote.pas,v $
- * $Locker: $
- *
- * Todo:
- *
- * Change Log:
- * $Log: uPostNote.pas,v $
- * Revision 1.5 2003/11/28 09:38:07 z_stoichev
- * Merged with branch-release-1-1 (Fma 0.10.28c)
- *
- * Revision 1.4.2.2 2003/11/27 12:54:22 z_stoichev
- * Unicode support.
- *
- * Revision 1.4.2.1 2003/10/27 07:22:54 z_stoichev
- * Build 0.1.0 RC1 Initial Checkin.
- *
- * Revision 1.4 2003/10/13 14:15:28 z_stoichev
- * Added Class field (private or public).
- *
- * Revision 1.3 2003/01/30 04:15:57 warren00
- * Updated with header comments
- *
- *
- *******************************************************************************
- }
-
- interface
-
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, StdCtrls, TntStdCtrls;
-
- type
- TfrmNote = class(TForm)
- Button1: TButton;
- Button2: TButton;
- ComboBox1: TComboBox;
- Memo: TTntMemo;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- frmNote: TfrmNote;
-
- implementation
-
- {$R *.dfm}
-
- end.
-